home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / COM / ProTERM Mac1.2a.sit / ProTERM Mac1.2a / Macros / Startup Rebuild < prev   
Text File  |  1996-03-04  |  367b  |  15 lines

  1. /**************************************
  2.   Adds Rebuild Command to Connect Menu
  3. **************************************/
  4.  
  5. FUNC startup()
  6. {
  7.  // Put the Rebuild Menu command in the Connect menu
  8.  IF (MM_LOOKUP("Connect:Rebuild Menu",0) == "") {
  9.     MM_CODE(MM_INSERT("Connect:%host%-<","Rebuild Menu",1),
  10.                       "cmd=menu call='#Sub:Host'");
  11.  }
  12.  RETURN;
  13. }
  14.  
  15.